net/http.http2requestParam.header (field)
13 uses
net/http (current package)
h2_bundle.go#L5991: rp.header = make(Header)
h2_bundle.go#L5993: rp.header.Add(sc.canonicalHeader(hf.Name), hf.Value)
h2_bundle.go#L5996: rp.authority = rp.header.Get("Host")
h2_bundle.go#L6005: if vv, ok := rp.header["Content-Length"]; ok {
h2_bundle.go#L6024: header Header
h2_bundle.go#L6035: needsContinue := httpguts.HeaderValuesContainsToken(rp.header["Expect"], "100-continue")
h2_bundle.go#L6037: rp.header.Del("Expect")
h2_bundle.go#L6040: if cookies := rp.header["Cookie"]; len(cookies) > 1 {
h2_bundle.go#L6041: rp.header.Set("Cookie", strings.Join(cookies, "; "))
h2_bundle.go#L6046: for _, v := range rp.header["Trailer"] {
h2_bundle.go#L6061: delete(rp.header, "Trailer")
h2_bundle.go#L6086: Header: rp.header,
h2_bundle.go#L7008: header: http2cloneHeader(msg.header), // clone since handler runs concurrently with writing the PUSH_PROMISE
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |